home *** CD-ROM | disk | FTP | other *** search
/ Network Supervisor's Toolkit / Network Supervisor's Toolkit.iso / tools / lu62 / include / mode.h < prev    next >
C/C++ Source or Header  |  1996-07-10  |  932b  |  26 lines

  1. struct mode {
  2.        char    name[8];   /* ¿¼∩ í½«¬á MODE  */
  3.        struct mode *next; /* pointer to next mode block in list */
  4.        int     session_limit;
  5.        int     min_conwinners_limit;
  6.        int     min_conlosers_limit;
  7.        char    cnos_negotiation_in_progress;
  8.        int     limit_being_negotiated;
  9.        int     active_session_count;
  10.        int     active_conwinners_count;
  11.        int     active_conlosers_count;
  12.        int     pending_session_count;
  13.        int     pending_conwinners_count;
  14.        int     conlosers_count;
  15.        char    drain_self;
  16.        char    drain_partner;
  17.        int     auto_activations_limit;
  18.        int     termination_count;
  19.        int     pending_term_conwinners;
  20.        int     pending_term_conlosers;
  21.        char    single_session_polarity;
  22.        int     ru_h_size; /* RU_SIZE high bound */  
  23.        int     ru_l_size; /* RU_SIZE low  bound */
  24.        };
  25.  
  26.